home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_Cutout():
- return {
- 'Blur': 100,
- 'FillInterior': App.Constants.Boolean.true,
- 'Horizontal': 0,
- 'InteriorColor': (235,234,125),
- 'Opacity': 90,
- 'ShadowColor': (121,124,233),
- 'Vertical': 0
- }
-
- def Do(Environment):
- # Cutout
- App.Do( Environment, 'Cutout', Preset_Cutout())
-
-